GetRange
Returns the ApiRange object by the range reference.
Syntax
expression.GetRange(sRange);
expression
- A variable that represents a Api class.
Parameters
Name | Required/Optional | Data type | Default | Description |
---|---|---|---|---|
sRange | Required | string | The range of cells from the current sheet. |
Returns
Example
This example shows how to get the ApiRange object by the range reference.
var oWorksheet = Api.GetActiveSheet();
var oRange = Api.GetRange("A1:C1");
oRange.SetFillColor(Api.CreateColorFromRGB(255, 213, 191));
oWorksheet.GetRange("A3").SetValue("The color was set to the background of cells A1:C1.");